home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
fish
/
001-100
/
001-025
/
022
/
lemacs
/
epath.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-17
|
600b
|
46 lines
/* PATH: This file contains certain info needed to locate the
MicroEMACS files on a system dependant basis.
*/
/* possible names and paths of help files under different OSs */
char *pathname[] = {
#ifdef AMIGA
".emacsrc",
"emacs.hlp",
"",
":c/",
":t/"
#endif
#ifdef MSDOS
"emacs.rc",
"emacs.hlp",
"\\sys\\public\\",
"\\usr\\bin\\",
"\\bin\\",
"\\",
""
#endif
#ifdef V7
".emacsrc",
"emacs.hlp",
"/usr/local/",
"/usr/lib/",
""
#endif
#ifdef VMS
"emacs.rc",
"emacs.hlp",
"",
"sys$sysdevice:[vmstools]"
#endif
};
#define NPNAMES (sizeof(pathname)/sizeof(char *))